html {
    font-family:Arial, Helvetica, sans-serif;
    height: 900px;
}

h1 {
    display: flex;
    justify-content: center;
    margin-left: 60px;
    font-size: 80px;
    color:red;
    text-shadow: 5px 5px 10px rgb(55, 55, 55);
    }

.content {
    display: flex;
    justify-content: center; 
    /* margin-bottom: 150px; */
    /* background-color: blueviolet; */
    gap: 30px;
    margin-top: 100px;
    align-items: center;
}

.container {
    height: 500px;
    width: 500px;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 10px 10px 10px 10px rgb(164, 164, 164);
    display: grid;
}

button {
    font-size:20px;
    font-family:monospace;
    background-color:lightgray;
    box-shadow: 4px 4px 10px 4px rgb(164, 164, 164);
    height: 45px;
    width: 200px;
    border-radius: 5px;
    margin-bottom: 400px;
}

